home *** CD-ROM | disk | FTP | other *** search
/ Micromanía 92 / CDMM92_1.ISO / SOF 2 SDK / sof2sdk-101.msi / _92D6AC311BB48EBA344BBABC89DA6AB0 / _D87EDCB3C6B74303B919A595FC33F752 < prev    next >
Encoding:
Text File  |  2002-04-17  |  2.7 KB  |  143 lines

  1. {
  2.     \\ PATCH IGNORE
  3.  
  4.     menuDef 
  5.     {
  6.         name        "patch_ignore"
  7.         visible        0
  8.         fullscreen    0
  9.         rect        0 0 640 480
  10.         focusColor    .49 .56 .27 1
  11.         style        WINDOW_STYLE_FILLED
  12.         popup
  13.  
  14.         onESC 
  15.         { 
  16.             close patch_ignore;
  17.         }
  18.  
  19.         itemDef
  20.         {
  21.             name        window
  22.             rect        0 0 640 480
  23.             style        WINDOW_STYLE_FILLED
  24.             backcolor    0 0 0 .5
  25.             visible        1
  26.             decoration
  27.         }
  28.  
  29.         itemDef 
  30.         {
  31.             name        window
  32.             rect        160 140 330 200
  33.             background    "gfx/menus/backdrop/requestor"
  34.             style        WINDOW_STYLE_SHADER
  35.             visible        1
  36.             decoration
  37.         }
  38.  
  39.         itemDef 
  40.         {
  41.             text        "Do you want to permanently ignore"
  42.             rect        195 170 500 33
  43.             textfont    "hud"
  44.             textscale    .43
  45.             textaligny    8
  46.             forecolor    .12 .14 .08 1
  47.             visible        1
  48.             decoration
  49.         }
  50.  
  51.         itemDef 
  52.         {
  53.             text        "this available patch?"
  54.             rect        195 190 500 33
  55.             textfont    "hud"
  56.             textscale    .43
  57.             textaligny    8
  58.             forecolor    .12 .14 .08 1
  59.             visible        1
  60.             decoration
  61.         }
  62.  
  63.         itemDef 
  64.         {
  65.               name        yes_ignore_button
  66.             group        invalid_version
  67.               text        "Yes"
  68.             type        ITEM_TYPE_BUTTON
  69.             style        WINDOW_STYLE_FILLED
  70.               rect        205 250 80 20
  71.             textfont    "hud"
  72.             textscale    .43
  73.             textalign    0
  74.               textalignx    25
  75.             textaligny    2
  76.             forecolor    .12 .14 .08 1
  77.             backcolor    0 0 0 0
  78.               visible        1 
  79.             border        1
  80.             bordercolor    0 0 0 1
  81.  
  82.               action 
  83.             {
  84.                 play "sound/misc/menus/select.wav" ; 
  85.                 uiScript ignoreCurrentVersion
  86.                 close patch_info ; 
  87.                 close patch_ignore ; 
  88.             }
  89.             mouseEnter 
  90.             { 
  91.                 play "sound/misc/menus/hilite1.wav" ; 
  92.                 setitemcolor yes_ignore_button backcolor .12 .14 .08 1
  93.                 setitemcolor yes_ignore_button forecolor .49 .56 .27 1
  94.             }
  95.               mouseExit 
  96.             { 
  97.                 setitemcolor yes_ignore_button forecolor .12 .14 .08 1
  98.                 setitemcolor yes_ignore_button backcolor 0 0 0 0
  99.             }
  100.         }
  101.  
  102.         itemDef 
  103.         {
  104.               name        no_ignore_button
  105.             group        invalid_version
  106.               text        "No"
  107.             type        ITEM_TYPE_BUTTON
  108.             style        WINDOW_STYLE_FILLED
  109.               rect        325 250 80 20
  110.             textfont    "hud"
  111.             textscale    .43
  112.             textalign    0
  113.               textalignx    30
  114.             textaligny    2
  115.             forecolor    .12 .14 .08 1
  116.             backcolor    0 0 0 0
  117.               visible        1 
  118.             border        1
  119.             bordercolor    0 0 0 1
  120.  
  121.               action 
  122.             {
  123.                 play "sound/misc/menus/select.wav" ; 
  124.                 close patch_info ; 
  125.                 close patch_ignore ; 
  126.             }
  127.  
  128.             mouseEnter 
  129.             { 
  130.                 play "sound/misc/menus/hilite1.wav" ; 
  131.                 setitemcolor no_ignore_button backcolor .12 .14 .08 1
  132.                 setitemcolor no_ignore_button forecolor .49 .56 .27 1
  133.             }
  134.  
  135.               mouseExit 
  136.             { 
  137.                 setitemcolor no_ignore_button forecolor .12 .14 .08 1
  138.                 setitemcolor no_ignore_button backcolor 0 0 0 0
  139.             }
  140.         }
  141.     }
  142. }
  143.